home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / pas_all.zip / TI177.ASC < prev    next >
Text File  |  1991-09-11  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.   PRODUCT : TURBO GAMEWORKS                                     NUMBER
  9.                                                               : 177
  10.   VERSION : 1.00A
  11.        OS : PC-DOS
  12.      DATE : May 21, 1986                                 PAGE : 1/1
  13.   TITLE : ROW AND COLUMN COORDINATE UPDATTE
  14.  
  15.  
  16.  
  17.  
  18.   The following patch causes Turbo Gameworks to properly reset the
  19.   column and row coordinates at the start of a new game. This
  20.   problem occurs after the board has been Turned and a New game
  21.   started by typing N.
  22.  
  23.   Note: After installing this patch make sure that you update the
  24.   version number of TURBO CHESS to 1.00B. Be sure to indicate that
  25.   you have updated the program in any correspondence you may have
  26.   with the Technical Support Department.
  27.  
  28.   In the procedure ResetGame in the file TALK.CH:
  29.  
  30.    Change from:
  31.        Turned := false;   { Print Screen picture }
  32.        SetUpScreen(FirstCall);
  33.        PrintBoard;
  34.     end; { ResetGame }
  35.  
  36.     Change to:
  37.        Turned := false;   { Print Screen picture }
  38.        SetBorder;                  { addition ver. 1.00B }
  39.        SetUpScreen(FirstCall);
  40.        PrintBoard;
  41.     end; { ResetGame }
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.